Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@exodus/module
Advanced tools
Exodus base module implementation.
We want to write new code as modules whenever feasible. This will allow us to more easily share the code between platforms and make development easier in general.
This package exports an ExodusModule
class reusable modules can extend from, with shared event handling data and logging capabilities.
yarn add @exodus/module
import ExodusModule from '@exodus/module'
class ContactsModule extends ExodusModule {
constructor() {
super({ name: 'ContactsModule' })
}
load = async () => {
this._logger.log('loading contacts')
// do stuff...
this.emit('contacts-loaded', {})
}
}
FAQs
Exodus base module class
The npm package @exodus/module receives a total of 1,798 weekly downloads. As such, @exodus/module popularity was classified as popular.
We found that @exodus/module demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.